From: Jim Blandy Date: Tue, 2 Mar 1993 08:16:49 +0000 (+0000) Subject: * print.c (float_to_string): Define buf to be an unsigned char, to X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1^2~5^2~97069 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=8b24d146ec26a89533bf694a8c4db84d7a13cfc6;p=emacs.git * print.c (float_to_string): Define buf to be an unsigned char, to match the data field of strings. --- diff --git a/src/print.c b/src/print.c index 573b5d3f7d3..a43a774c0f4 100644 --- a/src/print.c +++ b/src/print.c @@ -603,7 +603,7 @@ to make it write to the debugging output.\n") void float_to_string (buf, data) - char *buf; + unsigned char *buf; double data; { register unsigned char *cp, c;